home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 31.zip / BS1 part 31 / Memory Challenge 1 (1990)(TTR)[h SR].7z / Memory Challenge 1 (1990)(TTR)[h SR].adf / devs / mountlist < prev    next >
Text File  |  1990-08-18  |  706b  |  43 lines

  1.  
  2. NEWCON:
  3.     Handler = L:Newcon-Handler
  4.     Priority = 5
  5.     StackSize = 1000
  6. #
  7.  
  8. /* This is an example of a non-filing system mount using a handler written
  9.    in C.
  10. */
  11.  
  12. SPEAK:
  13.     Handler = L:Speak-Handler
  14.     Stacksize = 6000
  15.     Priority = 5
  16.     GlobVec = -1
  17. #
  18.  
  19. /*  This is an example of an alternative type of non-filing device mount,
  20.     used to mount the non-buffered serial handler
  21. */
  22.  
  23. AUX:
  24.     Handler = L:Aux-Handler
  25.     Stacksize = 1000
  26.     Priority = 5
  27. #
  28. /*  This is a non-filing system device */
  29.  
  30. PIPE:      
  31.     Handler = L:Pipe-Handler
  32.     Stacksize = 6000
  33.     Priority = 5
  34.     GlobVec = -1
  35. #
  36.  
  37. NULL:      Handler = L:null-handler
  38.       Stacksize = 500
  39.       Priority = 5
  40.       GlobVec = 1
  41. #
  42.  
  43.